home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / DELPHI32 / CALCULTR / MCALC / MCALC.ZIP / Test.dpr < prev    next >
Text File  |  1996-07-25  |  246b  |  16 lines

  1. program Test;
  2.  
  3. uses
  4.   Forms,
  5.   TestCalc in 'TestCalc.pas' {Form1},
  6.   mcalc in 'mcalc.pas',
  7.   TreeView in 'Treeview.pas';
  8.  
  9. {$R *.RES}
  10.  
  11. begin
  12.   Application.Initialize;
  13.   Application.CreateForm(TForm1, Form1);
  14.   Application.Run;
  15. end.
  16.